home *** CD-ROM | disk | FTP | other *** search
/ Flushed Away Press Kit / FLUSHED AWAY.iso / pc / main.dxr / SCRIPTS_1_prepareMovie.ls < prev    next >
Encoding:
Text File  |  2006-10-04  |  444 b   |  17 lines

  1. global imageOrder, downloadList, AcrobatPath, AcrobatInstalled
  2.  
  3. on prepareMovie me
  4.   clearGlobals()
  5.   set the floatPrecision to 1
  6.   imageOrder = []
  7.   repeat with x = 1 to member("captions").text.line.count
  8.     imageOrder.add(member("captions").text.word[x])
  9.   end repeat
  10.   downloadList = []
  11.   AcrobatPath = EMPTY
  12.   AcrobatInstalled = 0
  13.   if (the environment).platform contains "Windows" then
  14.     baRegister("SuperColor", 10090044)
  15.   end if
  16. end
  17.